home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / SASETUP.MSI / F77645_datetimereg.mof < prev    next >
Encoding:
Text File  |  2003-02-21  |  1.1 KB  |  46 lines

  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright(C) 1999-2000 Microsoft Corporation all rights reserved.
  4. //
  5. // Module:      Set Date-Time WMI Provider
  6. //
  7. // Description: Appliance Manager WMI classes
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #pragma namespace("\\\\.\\root")
  11.  
  12. instance of __Namespace
  13. {
  14.     Name = "registry";
  15. };
  16.  
  17. #pragma namespace("//./root/cimv2")
  18.  
  19. // Instance provider
  20. instance of __Win32Provider as $InstProv
  21. {
  22.     Name    = "RegProv" ;
  23.     ClsId   = "{fe9af5c0-d3b6-11ce-a5b6-00aa00680c3f}" ;
  24.  
  25. };    
  26.  
  27. instance of __InstanceProviderRegistration
  28. {
  29.     Provider = "__Win32Provider.Name=\"RegProv\"";
  30.     SupportsPut = TRUE;
  31.     SupportsGet = TRUE;
  32.     SupportsDelete = FALSE;
  33.     SupportsEnumeration = TRUE;
  34. };
  35.  
  36. [dynamic, provider("RegProv"), ClassContext("local|hkey_local_machine\\System\\CurrentControlSet\\Control")]
  37.  
  38. class ProviderDateTimeAdjust
  39. {
  40.   [key] string  TimeZoneInformation;
  41.   [PropertyContext("DisableAutoDaylightTimeSet")] uint32 DisableAutoDaylightTimeSet;
  42. };
  43.  
  44.  
  45.  
  46.